home *** CD-ROM | disk | FTP | other *** search
/ AMIGA-CD 2 / Amiga-CD - Volume 2.iso / ungepackte_daten / 1994 / 8 / 05 / term-4.0-source.lha / SpinyNorman.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-17  |  268 b   |  17 lines

  1. /*
  2. **    SpinyNorman.h
  3. **
  4. **    Copyright © 1990-1994 by Olaf `Olsen' Barthel
  5. **        All Rights Reserved
  6. */
  7.  
  8. typedef LONG (* SPINY)(VOID);
  9.  
  10. extern SPINY SpinyNorman(VOID);
  11.  
  12. #define main()    RETURN_OK;                \
  13.         {                    \
  14.             SPINY Main = SpinyNorman();    \
  15.             Result = (*Main)();        \
  16.         }
  17.